{% extends 'base.html' %} {% block title %}{{ topic.title }} - Форум - МОЙ НЕ САМ{% endblock %} {% block content %}

{{ topic.title }}

{% if request.user.is_authenticated and request.user == topic.author or request.user.is_staff %} Редактировать {% endif %} {{ topic.created_at|date:"d.m.Y H:i" }}
{% if topic.author and topic.author.avatar %} {{ topic.author.username }} {% else %}
{% if topic.author %} {{ topic.author.username|slice:":1"|upper }} {% else %} ? {% endif %}
{% endif %}
{% if topic.author %} {{ topic.author.get_full_name|default:topic.author.username }} {% else %} Удаленный пользователь {% endif %}
{{ topic.content|linebreaks }}

Комментарии ({{ comments|length }})

{% if comments %}
{% for comment in comments %}
{% if comment.author %} {{ comment.author.get_full_name|default:comment.author.username }} {% else %} Удаленный пользователь {% endif %}
{{ comment.created_at|date:"d.m.Y H:i" }}
{% if comment.author and comment.author.avatar %} {{ comment.author.username }} {% else %}
{% if comment.author %} {{ comment.author.username|slice:":1"|upper }} {% else %} ? {% endif %}
{% endif %}

{{ comment.content|linebreaks }}

{% endfor %}
{% else %}

Пока нет комментариев. Будьте первым, кто оставит комментарий!

{% endif %} {% if request.user.is_authenticated %}
Добавить комментарий
{% csrf_token %}
{% else %}

Войдите или зарегистрируйтесь, чтобы оставить комментарий.

{% endif %} {% endblock %}